/* 焦点轮播 */
.swiper2 {
  float: left;
  width: 320px;
  height: 280px;
  /* 焦点轮播图css */
}
.swiper2 .focus,
.swiper2 .focus .pic {
  width: 100%;
  height: 100%;
  position: relative;
}
.swiper2 .focus .pic > div {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.swiper2 .focus .pic img {
  width: 100%;
}
.swiper2 .focus .pic p {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 14px;
  height: 30px;
  padding-left: 6px;
  line-height: 30px;
  background-color: rgba(8, 53, 92, 0.5);
  color: #fff;
}
.swiper2 .focus .pic p span {
  display: block;
  width: calc(100% - 120px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.swiper2 .focus .focus-prev,
.swiper2 .focus .focus-next {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: block;
  width: 32px;
  height: 52px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
  background-size: 12px 20px;
  color: #fff;
  opacity: 0;
  transition: all 0.3s;
}
.swiper2 .focus .focus-prev {
  transform: translate(-50px, 0);
  left: 0;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23fff'%2F%3E%3C%2Fsvg%3E");
}
.swiper2 .focus .focus-next {
  transform: translate(50px, 0);
  right: 0;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23fff'%2F%3E%3C%2Fsvg%3E");
}
.swiper2 .focus:hover .focus-prev,
.swiper2 .focus:hover .focus-next {
  opacity: 1;
  transform: translate(0, 0);
}
.swiper2 .dot {
  height: 30px;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 10px;
}
.swiper2 .dot .swiper-pagination-bullet {
  opacity: 0.7;
  list-style: none;
  width: 18px;
  height: 18px;
  line-height: 20x;
  border-radius: 0;
  border: 1px solid #cccccc;
  background: #ffffff;
  text-align: center;
  cursor: pointer;
  margin-left: 3px;
  font-size: 12px;
  color: #000000;
}
.swiper2 .dot .swiper-pagination-bullet-active {
  background-color: #1188c0;
  color: #fff;
  border: 1px solid #1188c0;
  opacity: 1;
}
